C & C++
epub, mobi, pdf |eng | 2013-10-03 | Author:Gookin, Dan [Gookin, Dan]

strlen() Returns the length of a string, not counting the \0 or NULL character at the end of the string. More string functions are available than are shown in Table ...
( Category: Tutorials April 18,2016 )
epub |eng | 2013-03-23 | Author:Seacord, Robert C. [Seacord, Robert C.]

Nonexceptional Integer Logic Errors Many exploitable software flaws do not require an exceptional condition to occur but are simply a result of poorly written code. The following function contains a ...
( Category: C April 2,2016 )
azw3, epub |eng | 2015-12-22 | Author:Gottschling, Peter [Gottschling, Peter]

vv.push_back(v1); vv.push_back(v2); vv.push_back(v3); vv.push_back(v2); vv.push_back(v1); They are implicitly converted into reference wrappers (reference_wrapper<T> contains a constructor for T& that is not explicit). The class contains a method get to get ...
( Category: C++ January 8,2016 )
azw3, epub |eng | 2015-08-31 | Author:Castro, Jorge R. [Castro, Jorge R.]

Note WARNING! E-mail accounts have certain security measures to not accept requests from unusual origins, for example, blocking or regional or even continental requests. It may be that the process ...
( Category: C December 31,2015 )
epub |eng | 2014-08-21 | Author:Brian W. Kernighan, Dennis M. Ritchie [Brian W. Kernighan, Dennis M. Ritchie]

6.9 Bit-fields When storage space is at a premium, it may be necessary to pack several objects into a single machine word; one common use is a set of single-bit ...
( Category: C December 18,2015 )
epub |eng | 2015-02-20 | Author:Aditya Shakkarwar [Shakkarwar, Aditya]

49. Program to read date,month, year and print the next day’s date,month,year. Code: # include <stdio.h> # include <conio.h> main( ) { int month[12]={31,28,31,30,31,30,31,31,30,3 1,30,31}; int d,m,y,nd,nm,ny,ndays; clrscr( ); printf(“enter ...
( Category: C December 17,2015 )
epub, pdf |eng | | Author:Mikael Olsson

Aggregate Initialization There is a syntactical shortcut available when initializing an object called aggregate initialization. This syntax allows fields to be set by using a brace-enclosed list of initializers, in ...
( Category: Object-Oriented Design December 3,2015 )
epub, azw3, mobi, pdf |eng | 2014-06-25 | Author:Michael Dawson [Dawson, Michael]

* * * Sometimes programmers prefix a reference name with the letter “r” to remind them that they’re working with a reference. A programmer might include the following lines: int ...
( Category: Tutorials November 12,2015 )
mobi, epub, pdf |eng | 2011-09-04 | Author:Massimo Banzi

( Category: Robotics & Automation February 12,2015 )
epub |eng | 1988-03-22 | Author:Brian W. Kernighan & Dennis Ritchie [Kernighan, Brian W.]

The for loop in lookup is the standard idiom for walking along a linked list: for (ptr = head; ptr != NULL; ptr = ptr->next) ... install uses lookup to ...
( Category: C & C++ August 30,2014 )